Skip to content

Bump actions/checkout from 6 to 7 - #765

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7
Open

Bump actions/checkout from 6 to 7#765
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor

Bumps actions/checkout from 6 to 7.

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.1.0

What's Changed

https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change

Full Changelog: actions/checkout@v6.0.3...v6.1.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

v6.0.1

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 1, 2026
@kci-pr-agent

kci-pr-agent Bot commented Aug 1, 2026

Copy link
Copy Markdown

Title

Bump actions/checkout from 6 to 7


Description

  • codeql-analysis.ymlでcheckoutアクションをv7に更新

  • codeql.ymlでcheckoutアクションをv7に更新

  • lint-test.ymlでcheckoutアクションをv7に更新

  • publish-to-pypi.ymlでcheckoutアクションをv7に更新


Changes walkthrough 📝

Relevant files
Configuration changes
codeql-analysis.yml
CodeQL分析ワークフローをcheckout@v7に更新                                                       

.github/workflows/codeql-analysis.yml

  • uses: actions/checkout@v6@v7に変更
  • CodeQL解析用ワークフローのCI設定更新
+1/-1     
codeql.yml
統合CodeQLワークフローをcheckout@v7に更新                                                       

.github/workflows/codeql.yml

  • uses: actions/checkout@v6@v7に変更
  • 統合CodeQLワークフローのCI設定更新
+1/-1     
lint-test.yml
テスト/Lintワークフローをcheckout@v7に更新                                                       

.github/workflows/lint-test.yml

  • テスト・Lintジョブのuses: actions/checkout@v6@v7に更新
  • Pythonバージョンマトリクス中のcheckoutアクション更新
  • +2/-2     
    publish-to-pypi.yml
    PyPI公開ワークフローをcheckout@v7に更新                                                           

    .github/workflows/publish-to-pypi.yml

    • uses: actions/checkout@v6@v7に変更
    • PyPI公開ジョブのCI設定更新
    +1/-1     

    Need help?
  • Type /help how to ... in the comments thread for any questions about PR-Agent usage.
  • Check out the documentation for more information.
  • @kci-pr-agent

    kci-pr-agent Bot commented Aug 1, 2026

    Copy link
    Copy Markdown

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    ⏱️ Estimated effort to review: 1 🔵⚪⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Checkout動作変更

    actions/checkout v7 のデフォルトフェッチ設定や履歴取得方法が変更されていないかを確認し、必要に応じてオプション(fetch-depth など)の指定を検討してください

    uses: actions/checkout@v7
    フォークPR制限

    actions/checkout v7 では pull_request_target や workflow_run でフォークPRのチェックアウトが制限される変更があります。外部コントリビューターのPRで影響が出ないか確認してください

    - uses: actions/checkout@v7

    Comment on lines 41 to +42
    - name: Checkout repository
    uses: actions/checkout@v6
    uses: actions/checkout@v7

    Copy link
    Copy Markdown

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Suggestion: フルヒストリーやタグを必要とするジョブで浅いクローンによる問題を避けるため、fetch-depth: 0 を指定して完全なリポジトリ履歴を取得してください。 [possible issue, importance: 6]

    Suggested change
    - name: Checkout repository
    uses: actions/checkout@v6
    uses: actions/checkout@v7
    - name: Checkout repository
    uses: actions/checkout@v7
    with:
    fetch-depth: 0

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants